home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 …ember: Reference Library / Apple Developer Reference Library (December 1999) (Disk 1).iso / pc / technical documentation / develop / develop issue 28 / develop issue 28 code / misalignment tools / mil folder / mil.h next >
Encoding:
C/C++ Source or Header  |  1996-10-04  |  641 b   |  29 lines

  1. /*
  2. // ===========================================================================
  3. //    MIL.h         ©1996 Apple Inc.
  4. // ===========================================================================
  5. //
  6. //    Author:        Kevin T. Looney
  7. //  Date:        5/10/96
  8. //
  9. //  Purpose:
  10. //     Defines function prototypes for MIL (Misalignment Instrumentation Library)
  11. */
  12.  
  13. #ifndef __MIL__
  14. #define __MIL__
  15.  
  16. #ifdef __cplusplus
  17. extern "C" {
  18. #endif
  19.  
  20. void              initMisalignRegs();            // Initializes internal Misalignment counter
  21. unsigned long   getMisalignments();            // Get the current number of misalignments since initialization
  22.  
  23.  
  24. #ifdef __cplusplus
  25. }
  26. #endif
  27.  
  28. #endif /* __MIL__ */
  29.